home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / BOFH / HQApplication.h < prev    next >
Encoding:
Text File  |  2001-06-23  |  407 b   |  17 lines

  1. //
  2. //  HQApplication.h
  3. //  HackMac
  4. //
  5.  
  6. #import <AppKit/AppKit.h>
  7.  
  8. @interface HQApplication : NSApplication {
  9.     // no ivars allowed.
  10. }
  11.  
  12. + (void)doNSAppInstancePose;
  13. - (void)keypress :(NSEvent *)event withChar:(unichar)thechartopretendtopress;
  14. - (void)keypress_special :(NSEvent *)event withChar:(unichar)thechartopretendtopress;
  15. - (void)stringPress: (NSEvent *)event withString:(NSString *)theString;
  16. @end
  17.